Genetics of Evolution
Preliminaries
If you are not already familiar with the structure of these exercises, read the Introduction first.
Reminder: Save your work regularly.
If you are using a Mac, we recommend that you use either Chrome or Firefox to complete these exercises. Some of the default settings in Safari prevent these exercises from running.
Contact information
If you have questions about these exercises, please contact Dr. Kevin Middleton (middletonk@missouri.edu) or drop by Tucker 224.
Learning objectives
The learning objectives for this exercise are:
- Describe and identify the mechanisms by which variation arises and is fixed (or lost) in a population over time.
- Model how random mating yields predicted genotype frequencies in Hardy-Weinberg Equilibrium (HWE), and how non-random mating affects allele and genotype frequencies.
- Test whether HWE is present in a population.
- Explain how natural selection and genetic drift can affect the elimination, maintenance or increase in frequency of alleles in a population.
Mechanisms of biological evolution
Evolution is defined by the change in allele frequencies over time. In this context time refers to subsequent generations in a reproducing population. Two main scales of evolution are:
- Microevolution: both adaptive and non-adaptive (neutral) changes within populations across generations
- Macroevolution: higher level changes involving origination and diversification of species.
Separating microevolution from macroevolution like this might make it appear that they are completely distinct processes. In reality,
- There is a continuum between the two: microevolutionary change can lead to observable macroevolutionary patterns.
- The fundamental process of change in allele frequencies over time operates the same in both.
One final point to remember is that populations don’t evolve in isolation. Species that live in communities with one another interact with both native and introduced species at many different tropic levels (Figure 1).
Hardy-Weinberg Equilibrium
If evolution is the change in allele frequencies over time, what defines the lack of change in allele frequencies? In population genetics, no change in allele frequencies is called Hardy-Weinberg Equilibrium (often abbreviated HWE for simplicity). The equations for HWE were developed during the first decade of the 1900’s, shortly after the re-discovery of Mendelian genetics.
HWE allows us to predict genotype (and thus phenotype) frequencies under a specific set of conditions in which there are no additional forces, either internal or external, acting on a population:
- Infinite population size
- All mating is random
- No migration
- No selection
- No mutation
There are many processes that can lead to deviations from Hardy-Weinberg Equilibrium.
For each of the conditions above, (1) give an example of a process that would lead to a deviation from HWE and (2) predict whether that process would lead to increased or decreased genetic variation in the subsequent generation.
Evolutionary biologists are often interested in determining if a population is in Hardy-Weinberg Equilibrium. If a population is found to be violating HWE, then it suggests that one of the processes listed above is happening in that population.
Evolution of single alleles
The first phenotypes that you learned about as well as those described in the first set of exercises (Transmission of Genetic Information) were Mendelian traits. In Mendelian traits, a single gene is responsible for a single trait. In this context, you also learned about dominant and recessive alleles (and their variations), which lead to different observable phenotypes.
The simplest case to use for exploring Hardy-Weinberg Equilibrium is a single allele in a diploid organism. In this case, there are only three possible genotypes for two alleles (p and q)1:
- pp
- pq
The HWE equation results from the basic rules of probability that you learned about in the first set of exercises. To explore HWE in a population, we will use the example of the Peppered moth (Biston betularia; Figure 2).
Imagine a population of Peppered moths with the following allele frequencies:
- p = 0.1
- q = 0.9
There are a few things to note here:
- The frequencies summarize information about an entire population, not about any particular individuals.
- The frequencies sum to 1: either p or q (just like a flipped coin can be either heads or tails).
- The frequencies don’t tell us about whether one allele is dominant.
Probabilities of allele combinations
We can use the rules of probability that you have learned about to determine the probability of an individual having each of the possible genotypes: pp, qq, or pq. Because allele assort independently, the probabilities are just the products of the probabilities.
\[pp = 0.1 \times 0.1 = 0.01\]
\[qq = 0.9 \times 0.9 = 0.81\]
\[pq = (0.1 \times 0.9) + (0.1 \times 0.9) = 0.18\]
Because pq is not distinguishable from qp, we add the probabilities of each combination (0.1 x 0.9 = 0.09 and 0.9 x 0.1 = 0.09).
Either way we add up these probabilities, the sum is 1:
Thus, basic probability leads to the expectation for a population in HWE:
\[p^2 + 2pq + q^2 = 1\]
A population in Hardy-Weinberg Equilibrium will satisfy this equation.
Counts of genotypes
We start with a population of 1,000 Peppered moth individuals, which is large but not infinitely large, that is in HWE. The probability of p is 0.1 and of q is 1 - 0.1 = 0.9. We expect the following genotypes in the population:
Notice that we calculate the probability of q as 1 - p, so we only have to change the value of p.
If each of the individuals makes 10 gametes, then pp individuals will contribute 2 p, pq will contribute 1 p and 1 q, and qq individuals will contribute 2 q.
We will have the following numbers of alleles represented and resulting frequencies of p and q in the next generation.
In the first code block above, iteratively change the values of
pop_sizeandp. Start by leavingpat 0.1 and changepop_sizeto larger or smaller values. Run the first code block and then the second. See how the frequencies of p and q change. Then setpop_sizeto 1000 and change the value forpto some number between 0 and 1.
Testing HWE chisq
Example of MM mice
Evolution of polygenic traits
Counting the ways that alleles can combine (coins)
Mechanism of selection
- Moving population average
- Drift vs. selection
- Effect of sample size on selection and drift in phenotypic evolution
- Drift as sampling error
- Drift has a larger effect in small populations
Populations have significant underlying variation
Intuition of moving mean
Feedback FIXME
We would appreciate your anonymous feedback on this exercise. If you choose to, please fill out this optional 4-question survey to help us improve.
References
Footnotes
p and q are most commonly used as the allele names, but you could substitute any pair: A and B, A1 and A2, etc.↩︎